home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / bbs / fmlw_122.zip / FMSTRUCT.ZIP / CFGFILE.H < prev    next >
Text File  |  1996-09-29  |  670b  |  25 lines

  1. /*
  2.    CFGFILE.H
  3.  
  4.    Config file interface header file for FMail 1.22
  5.    Copyright (C) 1996 Folkert J. Wijnstra. All rights reserved.
  6.  
  7.    All information in this document is subject to change at any time
  8.    without prior notice!
  9. */
  10.  
  11.  
  12. #define CFG_GENERAL   0
  13. #define CFG_NODES     1
  14. #define CFG_ECHOAREAS 2
  15. #define CFG_AREADEF   3
  16. #define MAX_CFG_FILES 4
  17.  
  18. s16 openConfig (u16 fileType, headerType **header, void **buf);
  19. s16 getRec (u16 fileType, s16 index);
  20. s16 putRec (u16 fileType, s16 index);
  21. s16 insRec (u16 fileType, s16 index);
  22. s16 delRec (u16 fileType, s16 index);
  23. s16 chgNumRec   (u16 fileType, s16 number);
  24. s16 closeConfig (u16 fileType);
  25.